home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / ConnBundle.java < prev    next >
Text File  |  1998-09-28  |  437b  |  17 lines

  1. package com.symantec.itools.awt;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class ConnBundle extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    
  10.    static final Object[][] contents = {
  11.        // FormattedTextBeanInfo
  12.        {"getMask", "Get the edit field entry mask"},
  13.        {"setMask", "Set the edit field entry mask"},
  14.        // END FormattedTextBeanInfo    
  15.    };
  16. }
  17.